home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / exec / funpush0.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  524 b   |  28 lines

  1. /*
  2. \funcref{fun\_push\_0}{void fun\_push\_0 ()}
  3.     {}
  4.     {}
  5.     {push()}
  6.     {fun\_push\_1()}
  7.     {funpush0.c}
  8.     {
  9.         This function serves the evaluation of logical expressions. It is
  10.         executed when an {\em op\_push\_0} opcode is found in the binary
  11.         makefile. A variable of type {\em e\_int} is pushed, while its {\em
  12.         vu.intval} field is set to zero.
  13.     }
  14. */
  15.  
  16. #include "icm-exec.h"
  17.  
  18. void fun_push_0 ()
  19. {
  20.     VAR_
  21.         tmp;
  22.  
  23.     tmp.type = e_int;
  24.     tmp.vu.intval = 0;
  25.  
  26.     push (tmp);
  27. }
  28.